home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Shells / tcsh / Source / config / config.sxa < prev    next >
Encoding:
Text File  |  1994-02-21  |  3.3 KB  |  133 lines

  1. /*
  2.  * config.h for 
  3.  *      PFU/Fujitsu A-xx computer
  4.  * running
  5.  *      SX/A Edition 60 or later, without BSD/X option.
  6.  * (for systems with BSD/X, use config.bsd and /usr/bsd/bin/cc)
  7.  */
  8. /*
  9.  * Use followings in Makefile.
  10.  * w/o BSD/X
  11.  *    CC=    /bin/cc
  12.  * with BSD/X
  13.  *    CC=    /usr/bsd/bin/cc
  14.  *
  15.  * define KANJI in config_f.h if you need it.
  16.  */
  17.  
  18.  
  19. /****************** System dependant compilation flags ****************/
  20. /*
  21.  * POSIX    This system supports IEEE Std 1003.1-1988 (POSIX).
  22.  */
  23. #undef POSIX
  24.  
  25. /*
  26.  * POSIXJOBS    This system supports the optional IEEE Std 1003.1-1988 (POSIX)
  27.  *        job control facilities.
  28.  */
  29. #undef POSIXJOBS
  30.  
  31. /*
  32.  * POSIXSIGS    Use the POSIX signal facilities to emulate BSD signals.
  33.  */
  34. #undef POSIXSIGS
  35.  
  36. /*
  37.  * VFORK    This machine has a vfork().  
  38.  *        It used to be that for job control to work, this define
  39.  *        was mandatory. This is not the case any more.
  40.  *        If you think you still need it, but you don't have vfork, 
  41.  *        define this anyway and then do #define vfork fork.  
  42.  *        I do this anyway on a Sun because of yellow pages brain damage,
  43.  *        [should not be needed under 4.1]
  44.  *        and on the iris4d cause    SGI's fork is sufficiently "virtual" 
  45.  *        that vfork isn't necessary.  (Besides, SGI's vfork is weird).
  46.  *        Note that some machines eg. rs6000 have a vfork, but not
  47.  *        with the berkeley semantics, so we cannot use it there either.
  48.  */
  49. #undef VFORK
  50.  
  51. /*
  52.  * BSDJOBS    You have BSD-style job control (both process groups and
  53.  *        a tty that deals correctly
  54.  */
  55. #undef BSDJOBS
  56.  
  57. /*
  58.  * BSDSIGS    You have 4.2-style signals, rather than USG style.
  59.  *        Note: POSIX systems should not define this unless they
  60.  *        have sigvec() and friends (ie: 4.3BSD-RENO, HP-UX).
  61.  */
  62. #undef BSDSIGS
  63.  
  64. /*
  65.  * BSDTIMES    You have BSD-style process time stuff (like rusage)
  66.  *        This may or may not be true.  For example, Apple Unix
  67.  *        (OREO) has BSDJOBS and BSDSIGS but not BSDTIMES.
  68.  */
  69. #define BSDTIMES
  70.  
  71. /*
  72.  * BSDLIMIT    You have BSD-style resource limit stuff (getrlimit/setrlimit)
  73.  */
  74. #define BSDLIMIT
  75.  
  76. /*
  77.  * BSDNICE    Your system uses setpriority() instead of nice, to
  78.  *        change a processes scheduling priority
  79.  */
  80. #undef BSDNICE
  81.  
  82. /*
  83.  * TERMIO    You have struct termio instead of struct sgttyb.
  84.  *         This is usually the case for SYSV systems, where
  85.  *        BSD uses sgttyb. POSIX systems should define this
  86.  *        anyway, even though they use struct termios.
  87.  */
  88. #define TERMIO
  89.  
  90. /*
  91.  * SYSVREL    Your machine is SYSV based (HPUX, A/UX)
  92.  *        NOTE: don't do this if you are on a Pyramid -- tcsh is
  93.  *        built in a BSD universe.
  94.  *        Set SYSVREL to 1, 2, 3, or 4, depending the version of System V
  95.  *        you are running. Or set it to 0 if you are not SYSV based
  96.  */
  97. #define SYSVREL    3
  98.  
  99. /*
  100.  * YPBUGS    Work around Sun YP bugs that cause expansion of ~username
  101.  *        to send command output to /dev/null
  102.  */
  103. #undef YPBUGS
  104.  
  105. /*
  106.  * SIGVOID    Define this if your signal handlers return void.  On older
  107.  *        systems, signal returns int, but on newer ones, it returns void.
  108.  */
  109. #define SIGVOID 
  110.  
  111. /*
  112.  * HAVEDUP2    Define this if your system supports dup2().
  113.  */
  114. #undef HAVEDUP2
  115.  
  116. /*
  117.  * UTHOST    Does the utmp file have a host field?
  118.  */
  119. #undef UTHOST
  120.  
  121. /*
  122.  * DIRENT    Your system has <dirent.h> instead of <sys/dir.h>
  123.  */
  124. #define DIRENT
  125. /****************** local defines *********************/
  126. /****************** configurable hacks ****************/
  127. /* have been moved to config_f.h */
  128. #include "config_f.h"
  129. /*
  130.  * SX/A does not have NLS
  131.  */
  132. #undef NLS
  133.